-
Notifications
You must be signed in to change notification settings - Fork 315
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: support for show full tables #2410
feat: support for show full tables #2410
Conversation
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## develop #2410 +/- ##
===========================================
+ Coverage 77.58% 84.41% +6.83%
===========================================
Files 717 727 +10
Lines 112751 115113 +2362
===========================================
+ Hits 87474 97171 +9697
+ Misses 25277 17942 -7335 |
@fengjiachun @niebayes PTAL |
@evenyag PTAL |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rest LGTM.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Thank u for your contribution @Lilit0x |
* feat: added show tables command * fix(tests): fixed parser and statement unit tests * chore: implemeted display trait for table type * fix: handled no tabletype and error for usopprted command in show databse * chore: removed full as a show kind, instead as a show option * chore(tests): fixed failing test and added more tests for show full * chore: refactored table types to use filters * fix: changed table_type to tables
I hereby agree to the terms of the GreptimeDB CLA
What's changed and what's your intention?
Added support for
SHOW FULL TABLES
.Please explain IN DETAIL what the changes are in this PR and why they are needed:
The changes are to support listing all tables and table types in the default schema in greptimedb. The implementation is similar to MySQL.
Edit:
Checklist
#2372